home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / feel-075.lha / feel0.75 / bin / ecc.new next >
Text File  |  1992-03-15  |  544b  |  24 lines

  1. #!/bin/sh
  2. # Script to drive the compiler
  3. # $Id: ecc,v 1.2 90/11/29 21:44:05 is Exp $
  4. # $Log:    ecc,v $
  5. # Revision 1.2  90/11/29  21:44:05  is
  6. # Changed brad_export to denton_export
  7. # Revision 1.1  90/11/29  21:39:57  is
  8. # Script to drive the Eulisp compiler
  9. # CC_CPP=/usr/local/lib/gcpp
  10. # export CC_CPP
  11. #
  12.  
  13. GCC_EXEC_PREFIX=${FEELDIR}/bin/new-gcc-
  14. export GCC_EXEC_PREFIX
  15.  
  16. # The following is for the benifit of ldn, so it knows where to look
  17. # for the headers
  18. ElviraHdrs=-I${FEELDIR}/Src
  19. export ElviraHdrs
  20. gcc ${ElviraHdrs} $* ${ELVIRA} -lm
  21.  
  22.